Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@axway/amplify-utils
Advanced tools
A library for solving common filesystem, path, and more.
npm i @axway/amplify-utils --save
import {
existsSync,
isDir,
isFile,
locate
} from '@axway/amplify-utils';
console.log(existsSync('/path/to/something'));
console.log(isDir('/path/to/some/dir'));
console.log(isFile('/path/to/some/file'));
// recursively search a directory for a file up to a specified depth
console.log(locate('/path/to/some/dir', 'somefile', 2));
import {
expandPath,
real
} from '@axway/amplify-utils';
// replace ~ with the user's home path and join any additional segments
console.log(expandPath('~/foo', 'bar'));
// resolves symlinks to real path, even if symlink is broken
console.log(real('/some/path'));
import { arch } from '@axway/amplify-utils';
console.log(arch()); // 'x86' or 'x64'
import { arrayify } from '@axway/amplify-utils';
console.log(arrayify('foo')); // [ 'foo' ]
console.log(arrayify([ 'a', '', null, 'b' ], true)); // [ 'a', 'b' ]
import { assertNodeEngineVersion } from '@axway/amplify-utils';
// throw an exception if current node version doesn't satisfy the `engines.node` version
assertNodeEngineVersion(require('package.json'));
import { cache } from '@axway/amplify-utils';
const now = () => Date.now();
const first = await cache('my namespace', now);
const second = await cache('my namespace', now);
assert(first === second);
const third = await cache('my namespace', true, now);
assert(first !== third && second !== third);
import { cacheSync } from '@axway/amplify-utils';
const now = () => Date.now();
const first = cacheSync('my namespace', now);
const second = cacheSync('my namespace', now);
assert(first === second);
const third = cacheSync('my namespace', true, now);
assert(first !== third && second !== third);
Debouncer that returns a promise and that can be cancelled.
import { debounce } from '@axway/amplify-utils';
const fn = debounce(() => {
console.log(new Date());
});
// schedule the callback to be called in 200ms
fn().then(() => {
console.log('Function called');
});
// cancel the debounce
fn.cancel();
import { formatNumber } from '@axway/amplify-utils';
console.log(formatNumber(12)); // 12
console.log(formatNumber(123)); // 123
console.log(formatNumber(1234)); // 1,234
console.log(formatNumber(12345)); // 12,345
console.log(formatNumber(123456)); // 123,456
console.log(formatNumber(1234567)); // 1,234,567
import { get } from '@axway/amplify-utils';
const obj = {
foo: 'bar'
};
console.log(get(obj, 'foo')); // 'bar'
console.log(get(obj, 'baz', 'pow')); // 'pow'
Get all open sockets, [net] servers, timers, child processes, filesystem watchers, and other handles.
import { getActiveHandles } from '@axway/amplify-utils';
console.log(getActiveHandles());
import { inherits } from '@axway/amplify-utils';
class A {}
class B extends A {}
class C {}
console.log(inherits(B, A)); // true
console.log(inherits(B, C)); // false
import { mergeDeep } from '@axway/amplify-utils';
const obj1 = {
a: {
b: 'c'
}
};
const obj2 = {
a: {
d: 'e'
}
};
console.log(mergeDeep(obj1, obj2)); // { a: { b: 'c', d: 'e' } }
import { mutex } from '@axway/amplify-utils';
const fn = () => {
return mutex('my mutex', () => {
console.log('foo!');
});
};
await Promise.all([ fn(), fn(), fn() ]);
import { randomBytes } from '@axway/amplify-utils';
console.log(randomBytes(20));
import { sha1 } from '@axway/amplify-utils';
console.log(sha1('foo'));
import { sleep } from '@axway/amplify-utils';
await sleep(1000); // sleep for 1 second
Block multiple simultaneous callers until the first caller finishes, then all queued up 'tailgaters' are resolved with the result.
import { tailgate } from '@axway/amplify-utils';
const fn = () => {
return tailgate('my tailgate', async () => {
console.log('I will only be called once');
});
};
await Promise.all([ fn(), fn(), fn() ]);
import { unique } from '@axway/amplify-utils';
console.log(unique([ 'a', 'b', 'a', 'b' ])); // [ 'a', 'b' ]
This project is open source under the Apache Public License v2 and is developed by
Axway, Inc and the community. Please read the LICENSE
file included
in this distribution for more information.
FAQs
Axway Amplify utility library
The npm package @axway/amplify-utils receives a total of 2,058 weekly downloads. As such, @axway/amplify-utils popularity was classified as popular.
We found that @axway/amplify-utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.